home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Graphics Plus
/
Graphics Plus.iso
/
general
/
modelers
/
linkedit
/
linkedit.lha
/
link-edit
/
LinkEdit
/
Link
/
link_sys.c
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
C/C++ Source or Header
|
1991-03-13
|
222 b
|
15 lines
#include <stdio.h>
#include <sys/types.h>
#include <sys/time.h>
LinkPause(microsec)
long microsec;
{
struct timeval timeout;
timeout.tv_sec = 0;
timeout.tv_usec = microsec;
select(0,NULL,NULL,NULL,&timeout);
}